home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / examples / themes / themes.h.z / themes.h
C/C++ Source or Header  |  2002-04-08  |  830b  |  40 lines

  1. /****************************************************************************
  2. ** $Id:  qt/themes.h   3.0.3   edited Nov 23 13:04 $
  3. **
  4. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  5. **
  6. ** This file is part of an example program for Qt.  This example
  7. ** program may be used, distributed and modified without limitation.
  8. **
  9. *****************************************************************************/
  10.  
  11. #ifndef THEMES_H
  12. #define THEMES_H
  13.  
  14. #include <qmainwindow.h>
  15. #include <qfont.h>
  16.  
  17. class QTabWidget;
  18.  
  19. class Themes: public QMainWindow
  20. {
  21.     Q_OBJECT
  22.  
  23. public:
  24.     Themes( QWidget *parent = 0, const char *name = 0, WFlags f = WType_TopLevel );
  25.  
  26. protected:
  27.     QTabWidget *tabwidget;
  28.  
  29. protected slots:
  30.     void makeStyle(const QString &);
  31.     void about();
  32.     void aboutQt();
  33.  
  34. private:
  35.     QFont appFont;
  36. };
  37.  
  38.  
  39. #endif
  40.